Skip to main content

Http-Https

Description

The Http-Https tool is a tool that enables the sending of HTTP/HTTPS requests to a specified URL. It is used to send data to web servers or devices that use HTTP/HTTPS. This tool allows for the sending of customised requests including images.

caution

Currently, Zene does not support receiving data from HTTP/HTTPS requests.

Settings

Method

The HTTP/HTTPS method to use for the HTTP/HTTPS request. The following methods are available:

  • GET
  • POST
  • PUT
  • PATCH
  • DELETE

URL

The URL to send the HTTP/HTTPS request to.

Protocol

The protocol to use for the HTTP/HTTPS request.

Params

A map of key-value pairs representing the parameters to be sent in the HTTP/HTTPS request. In the URL, the parameters will be appended to the end of the URL as a query string.

The value input supports Mark-up Text Input.

Params example

KeyValue
param1value1
param2value2

https://example.com?param1=value1&param2=value2.

Headers

A map of key-value pairs representing the headers to be sent in the HTTP/HTTPS request.

The value input supports Mark-up Text Input.

Body Type

The type of body to be sent in the HTTP/HTTPS request. The following body types are available:

  • None: No body will be sent in the HTTP/HTTPS request.
  • Form Data: The body will be sent as form data in the HTTP/HTTPS request.
  • Raw: The body will be sent as raw data in the HTTP/HTTPS request.
  • x-www-form-urlencoded: The body will be sent as x-www-form-urlencoded data in the HTTP/HTTPS request.

Content Type

The content type of the body to be sent in the HTTP/HTTPS request. This will add a Content-Type header to the HTTP/HTTPS request. The following content types are available:

  • None: No content
  • Text: text/plain
  • JavaScript: application/javascript
  • JSON: application/json
  • HTML: text/html
  • XML: text/xml
  • x-www-form-urlencoded: application/x-www-form-urlencoded
tip

For a custom content type, select None and add a Content-Type header in the Headers input.

Body Form

Body Form

A map of key-value pairs representing the form data to be sent in the HTTP/HTTPS request. The value for the form data consists of the following fields:

  • Data: The form data to the specified key.
  • File Name: The file name of the form data.

Body Raw Data

Raw

The raw data to be sent in the HTTP/HTTPS request.

The input supports Mark-up Text Input.

X-WWW-Form-Urlencoded

x-www-form-urlencoded

A map of key-value pairs representing the x-www-form-urlencoded data to be sent in the HTTP/HTTPS request.

The value input supports Mark-up Text Input.